projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78e367e
)
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
author
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 20:02:58 +0000
(20:02 +0000)
committer
Jim Blandy
<jimb@redhat.com>
Wed, 16 Jun 1993 20:02:58 +0000
(20:02 +0000)
disables the meta key.
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index 194ec0cea507326eeab132823881c4d52a67992d..e696cb3d352588bb543447b6e5a9dfb298cbf41f 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-1168,6
+1168,11
@@
init_sys_modes ()
#endif
tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode;
+#ifdef ultrix
+ /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
+ anything, and leaving it in breaks the meta key. Go figure. */
+ tty.lmode &= ~LLITOUT;
+#endif
#ifdef BSD4_1
lmode = tty.lmode;